home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_745 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2005-09-23  |  288 b   |  13 lines

  1. on(rollOver){
  2.    if(_root.money >= 20)
  3.    {
  4.       _root.description = "Repair 50 points of broken armor. 20$.";
  5.       return undefined;
  6.    }
  7.    if(_root.money <= 19)
  8.    {
  9.       _root.description = "You cannot afford to repair your armor. 20$.";
  10.       return undefined;
  11.    }
  12. }
  13.